home *** CD-ROM | disk | FTP | other *** search
- function SimpleProgressBar()
- {
- }
- Object.registerClass("SimpleProgressBar",SimpleProgressBar);
- var p = SimpleProgressBar.prototype = new MovieClip();
- p.value = 0;
- p.maxValue = 1;
- p.setValue = function(newValue)
- {
- this.value = Math.max(0,Math.min(this.maxValue,newValue));
- this.display._xscale = this.value / this.maxValue * 100;
- };
-